home *** CD-ROM | disk | FTP | other *** search
- //begin_lib <!-- Begin External JavaScript -- DO NOT REMOVE THIS LINE -->
-
- function jsTextChange(){
- this.OverColor = "";
- this.OutColor = "";
- this.OverUnderline = true;
- this.OutUnderline = true;
- this.OverFont = "";
- this.OutFont = "";
- this.OverFontBold = false;
- this.OutFontBold = false;
- this.OverFontSize = "";
- this.OutFontSize = "";
- this.OverFontItalic = false;
- this.OutFontItalic = false;
- this.OverBgColor = "";
- this.OutBgColor = "";
- this.Over = tc_Over;
- this.Out = tc_Out;
- }
-
- function tc_Over(item){
- if(document.all){
- item.style.color = this.OverColor;
- item.style.textDecoration = (this.OverUnderline) ? "underline" : "none";
- item.style.fontFamily = this.OverFont;
- item.style.fontWeight = (this.OverFontBold) ? "bold" : "normal";
- item.style.fontSize = this.OverFontSize;
- item.style.fontStyle = (this.OverFontItalic) ? "italic" : "normal";
- item.style.backgroundColor = this.OverBgColor;
- }
- }
-
- function tc_Out(item){
- if(document.all){
- item.style.color = this.OutColor;
- item.style.textDecoration = (this.OutUnderline) ? "underline" : "none";
- item.style.fontFamily = this.Font;
- item.style.fontWeight = (this.OutFontBold) ? "bold" : "normal";
- item.style.fontSize = this.OutFontSize;
- item.style.fontStyle = (this.OutFontItalic) ? "italic" : "normal";
- item.style.backgroundColor = this.OutBgColor;
- }
- }
-
- //end_lib <!-- End External JavaScript -- DO NOT REMOVE THIS LINE -->
-